home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_291_reactions-bulletin board code.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  6.5 KB  |  250 lines

  1. global gMasterData, gFirstCardSp, gTempArt, gCardLocL, gCardsMoved, gBoardScore, gFlashTime
  2.  
  3. on startReactions
  4.   go("reaction")
  5.   goNarrator(gMasterData, "15")
  6.   setUserArea(gMasterData, #reactions1)
  7. end
  8.  
  9. on boardSetup
  10.   puppetTransition(1, 6)
  11.   go(label("reaction") + 2)
  12.   goNarrator(gMasterData, "16")
  13.   set gFirstCardSp to 7
  14.   set gTempArt to 48
  15.   set gCardsMoved to []
  16.   set gBoardScore to 0
  17.   set gFlashTime to the ticks
  18.   getSpriteLocs()
  19.   setPuppetState([7, 32], #c, 1)
  20.   setPuppetState([44, gTempArt], #n, 1)
  21.   setHandCursor(#on, [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32])
  22. end
  23.  
  24. on boardExit
  25.   setPuppetState([7, 32], #c, 0)
  26.   setPuppetState([3, 44, gTempArt], #n, 0)
  27.   setHandCursor(#off, [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32])
  28.   puppetSound(0)
  29. end
  30.  
  31. on getSpriteLocs
  32.   set gCardLocL to [:]
  33.   repeat with sNum = gFirstCardSp to gFirstCardSp + 25
  34.     addProp(gCardLocL, sNum, point(the locH of sprite sNum, the locV of sprite sNum))
  35.   end repeat
  36.   return gCardLocL
  37. end
  38.  
  39. on moveCard
  40.   set xsprite to the clickOn
  41.   set moveMember to the member of sprite xsprite
  42.   set the member of sprite gTempArt to moveMember
  43.   set the loc of sprite xsprite to point(-999, -999)
  44.   repeat while the mouseDown
  45.     set the loc of sprite gTempArt to point(the mouseH, the mouseV)
  46.     updateStage()
  47.   end repeat
  48.   EvalTarget(xsprite)
  49. end
  50.  
  51. on EvalTarget xsprite
  52.   if rollOver(4) then
  53.     newLocation(xsprite)
  54.   else
  55.     PutBack(xsprite)
  56.   end if
  57. end
  58.  
  59. on newLocation xsprite
  60.   if (count(gCardsMoved) < 10) or (getPos(gCardsMoved, xsprite) <> 0) then
  61.     setItDown(xsprite)
  62.   else
  63.     PutBack(xsprite)
  64.   end if
  65. end
  66.  
  67. on setItDown xsprite
  68.   puppetSound("thingset")
  69.   set the loc of sprite xsprite to point(the mouseH, the mouseV)
  70.   set the loc of sprite gTempArt to point(-999, -999)
  71.   updateStage()
  72.   if getPos(gCardsMoved, xsprite) = 0 then
  73.     add(gCardsMoved, xsprite)
  74.     scoreCard(#add, xsprite)
  75.   end if
  76. end
  77.  
  78. on PutBack xsprite
  79.   puppetSound("swoosh")
  80.   set vOrigLoc to getaProp(gCardLocL, xsprite)
  81.   set the loc of sprite xsprite to vOrigLoc
  82.   set the loc of sprite gTempArt to point(-999, -999)
  83.   set listPos to getPos(gCardsMoved, xsprite)
  84.   if listPos <> 0 then
  85.     deleteAt(gCardsMoved, listPos)
  86.     scoreCard(#subtract, xsprite)
  87.   end if
  88.   updateStage()
  89. end
  90.  
  91. on scoreCard scoreMode, xsprite
  92.   case xsprite of
  93.     gFirstCardSp:
  94.       set thisScore to 5
  95.     (gFirstCardSp + 1):
  96.       set thisScore to 10
  97.     (gFirstCardSp + 2):
  98.       set thisScore to 5
  99.     (gFirstCardSp + 3):
  100.       set thisScore to -10
  101.     (gFirstCardSp + 4):
  102.       set thisScore to 10
  103.     (gFirstCardSp + 5):
  104.       set thisScore to -10
  105.     (gFirstCardSp + 6):
  106.       set thisScore to 10
  107.     (gFirstCardSp + 7):
  108.       set thisScore to 0
  109.     (gFirstCardSp + 8):
  110.       set thisScore to -10
  111.     (gFirstCardSp + 9):
  112.       set thisScore to -10
  113.     (gFirstCardSp + 10):
  114.       set thisScore to 0
  115.     (gFirstCardSp + 11):
  116.       set thisScore to 10
  117.     (gFirstCardSp + 12):
  118.       set thisScore to 10
  119.     (gFirstCardSp + 13):
  120.       set thisScore to 10
  121.     (gFirstCardSp + 14):
  122.       set thisScore to 0
  123.     (gFirstCardSp + 15):
  124.       set thisScore to 0
  125.     (gFirstCardSp + 16):
  126.       set thisScore to 10
  127.     (gFirstCardSp + 17):
  128.       set thisScore to 0
  129.     (gFirstCardSp + 18):
  130.       set thisScore to -5
  131.     (gFirstCardSp + 19):
  132.       set thisScore to 10
  133.     (gFirstCardSp + 20):
  134.       set thisScore to -10
  135.     (gFirstCardSp + 21):
  136.       set thisScore to -10
  137.     (gFirstCardSp + 22):
  138.       set thisScore to 0
  139.     (gFirstCardSp + 23):
  140.       set thisScore to -10
  141.     (gFirstCardSp + 24):
  142.       set thisScore to -10
  143.     (gFirstCardSp + 25):
  144.       set thisScore to 10
  145.     otherwise:
  146.       set thisScore to 0
  147.   end case
  148.   case scoreMode of
  149.     #add:
  150.       set gBoardScore to gBoardScore + thisScore
  151.     #subtract:
  152.       set gBoardScore to gBoardScore - thisScore
  153.   end case
  154. end
  155.  
  156. on cardsFinished
  157.   if count(gCardsMoved) < 10 then
  158.     alert("Please select and move a total of ten cards to the bulletin board on the right.")
  159.   else
  160.     repeat with X = gFirstCardSp to gFirstCardSp + 25
  161.       if getPos(gCardsMoved, X) = 0 then
  162.         set the loc of sprite X to point(-999, -999)
  163.         next repeat
  164.       end if
  165.       nothing()
  166.     end repeat
  167.     puppetSprite(44, 0)
  168.     go("meter")
  169.   end if
  170. end
  171.  
  172. on setMeter
  173.   global checkMarks1
  174.   go(label("meter2"))
  175.   setUserArea(gMasterData, #reactions2)
  176.   puppetSound("twing.aif")
  177.   if getaProp(checkMarks1, #reactions) = 0 then
  178.     setaProp(checkMarks1, #reactions, 1)
  179.   end if
  180.   set needleSprite to 3
  181.   puppetSprite(needleSprite, 1)
  182.   case 1 of
  183.     (gBoardScore >= 40):
  184.       set the loc of sprite needleSprite to point(295, 184)
  185.     (gBoardScore <= -40):
  186.       set the loc of sprite needleSprite to point(295, 340)
  187.     otherwise:
  188.       set vLoc to 262 - integer(gBoardScore * (78 / 40.0))
  189.       set the loc of sprite needleSprite to point(295, vLoc)
  190.   end case
  191.   updateStage()
  192. end
  193.  
  194. on reSetCards
  195.   puppetSprite(3, 0)
  196.   repeat with X = gFirstCardSp to gFirstCardSp + 25
  197.     if getPos(gCardsMoved, X) = 0 then
  198.       set the loc of sprite X to getProp(gCardLocL, X)
  199.       next repeat
  200.     end if
  201.     nothing()
  202.   end repeat
  203.   go(label("reaction") + 3)
  204.   setUserArea(gMasterData, #reactions1)
  205.   puppetSprite(44, 1)
  206. end
  207.  
  208. on checkFlasher
  209.   if count(gCardsMoved) = 10 then
  210.     set vNewTime to the ticks
  211.     set vDoneSprite to 44
  212.     if vNewTime > (gFlashTime + 30) then
  213.       set vThisName to the name of member the member of sprite vDoneSprite
  214.       case vThisName of
  215.         "YR done":
  216.           set the member of sprite vDoneSprite to member "YR done flash"
  217.         "YR done flash":
  218.           set the member of sprite vDoneSprite to member "YR done"
  219.       end case
  220.       set gFlashTime to the ticks
  221.     end if
  222.   end if
  223. end
  224.  
  225. on flashButton thisSprite
  226.   set vNewTime to the ticks
  227.   if vNewTime > (gFlashTime + 45) then
  228.     set castMember to the member of sprite thisSprite
  229.     set Castname to the name of member castMember
  230.     set castNum to the castLibNum of member castMember
  231.     if the puppet of sprite thisSprite then
  232.       set the member of sprite thisSprite to castMember
  233.       updateStage()
  234.       puppetSprite(thisSprite, 0)
  235.     else
  236.       puppetSound("ding.aif")
  237.       puppetSprite(thisSprite, 1)
  238.       set the member of sprite thisSprite to member (Castname && "flash") of castLib castNum
  239.       updateStage()
  240.     end if
  241.     set gFlashTime to the ticks
  242.   end if
  243. end
  244.  
  245. on getScoreMeterPos score
  246.   set vLoc to 262 - integer(score * (78 / 40.0))
  247.   set the loc of sprite 3 to point(295, vLoc)
  248.   updateStage()
  249. end
  250.